psl 0.4.2

A native library for Mozilla's Public Suffix List
docs.rs failed to build psl-0.4.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: psl-2.1.34

A native Rust library for Mozilla's Public Suffix List

extern crate psl;

use psl::{Psl, List};

let list = List::new();

let suffix = list.suffix("example.com")?;

let domain = list.domain("example.com")?;